home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / automake.0 / automake / automake-1.0 / tests / canon2.test < prev    next >
Encoding:
Text File  |  1996-04-04  |  312 b   |  20 lines

  1. #! /bin/sh
  2.  
  3. # Test to make sure name canonicalization happens for texinfo.
  4.  
  5. . $srcdir/defs || exit 1
  6.  
  7. cat > Makefile.am << 'END'
  8. info_TEXINFOS = zar-doz.texi
  9. zar_doz_TEXINFOS = frob.texi
  10. END
  11.  
  12. : > texinfo.tex
  13. : > zar-doz.texi
  14. : > frob.texi
  15.  
  16. $AUTOMAKE || exit 1
  17.  
  18. grep zar-doz_TEXINFOS Makefile.in && exit 1
  19. exit 0
  20.